/* Anthony Auto – Custom Styles */

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero gradient overlay */
.hero-overlay {
    background: linear-gradient(135deg, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.65) 60%, rgba(15,23,42,0.3) 100%);
}

/* Card hover lift */
.card-hover {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Gold underline on headings */
.gold-underline {
    position: relative;
    display: inline-block;
}
.gold-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 48px;
    height: 3px;
    background: #f59e0b;
    border-radius: 2px;
}

/* Badge pill */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 999px;
}

/* Step counter */
.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f59e0b;
    color: #0f172a;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Service icon circle */
.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

/* Form focus ring */
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #f59e0b !important;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

/* Button base */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f59e0b;
    color: #0f172a;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 8px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(245,158,11,0.3);
    cursor: pointer;
    border: none;
    text-decoration: none;
}
.btn-primary:hover {
    background: #d97706;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(245,158,11,0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    font-weight: 700;
    padding: 11px 27px;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
}
.btn-outline:hover {
    border-color: #f59e0b;
    color: #f59e0b;
    background: rgba(245,158,11,0.05);
}

/* Star rating */
.stars { color: #f59e0b; }

/* Section separator */
.section-label {
    display: inline-block;
    background: rgba(245,158,11,0.12);
    color: #f59e0b;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
}
